home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 August / CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso / disc2 / demo / pwrtcp11.exe / CONNECT2.FR_ / CONNECT2.bin
Text File  |  1994-09-01  |  2KB  |  83 lines

  1. VERSION 2.00
  2. Begin Form frmConnect 
  3.    BackColor       =   &H8000000F&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "Connect"
  6.    ClientHeight    =   1920
  7.    ClientLeft      =   2955
  8.    ClientTop       =   3180
  9.    ClientWidth     =   3240
  10.    ClipControls    =   0   'False
  11.    Height          =   2325
  12.    Left            =   2895
  13.    LinkTopic       =   "Form3"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   1920
  17.    ScaleWidth      =   3240
  18.    Top             =   2835
  19.    Width           =   3360
  20.    Begin TextBox txtPort 
  21.       Height          =   300
  22.       Left            =   1200
  23.       TabIndex        =   5
  24.       Text            =   "1025"
  25.       Top             =   600
  26.       Width           =   1455
  27.    End
  28.    Begin TextBox txtHostName 
  29.       Height          =   300
  30.       Left            =   1200
  31.       TabIndex        =   1
  32.       Top             =   240
  33.       Width           =   1455
  34.    End
  35.    Begin CommandButton cmdCancel 
  36.       Cancel          =   -1  'True
  37.       Caption         =   "Cancel"
  38.       Height          =   375
  39.       Left            =   1800
  40.       TabIndex        =   4
  41.       Top             =   1200
  42.       Width           =   1215
  43.    End
  44.    Begin CommandButton cmdOK 
  45.       Caption         =   "OK"
  46.       Default         =   -1  'True
  47.       Height          =   375
  48.       Left            =   240
  49.       TabIndex        =   3
  50.       Top             =   1200
  51.       Width           =   1215
  52.    End
  53.    Begin Label Label2 
  54.       BackColor       =   &H8000000F&
  55.       Caption         =   "Port:"
  56.       Height          =   495
  57.       Left            =   120
  58.       TabIndex        =   2
  59.       Top             =   600
  60.       Width           =   1215
  61.    End
  62.    Begin Label Label1 
  63.       BackColor       =   &H8000000F&
  64.       Caption         =   "Host Name:"
  65.       Height          =   495
  66.       Left            =   120
  67.       TabIndex        =   0
  68.       Top             =   240
  69.       Width           =   1215
  70.    End
  71. End
  72. Sub cmdCancel_Click ()
  73.     Me.Hide
  74.     Me.Tag = False
  75. End Sub
  76.  
  77. Sub cmdOK_Click ()
  78.     Me.Hide
  79.     Me.Tag = True   ' Let the calling procedure know
  80.                     ' that this button was clicked
  81. End Sub
  82.  
  83.